.hyped-solar-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 40px;
    min-height: 80vh;
    font-family: var(--font-body), 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
    background-color: var(--bg-light-theme);
    border-radius: 60px;
    margin-bottom: 20px;
}
.hyped-solar-section .hero-content {
    padding-top: 20px;
}
.hyped-solar-section .hero-headline {
    font-size: clamp(40px, 6vw, 90px);
    font-weight: 900;
    line-height: 1.0;
    letter-spacing: -3px;
    font-family: var(--font-heading);
    color: var(--secondary-color);
    max-width: 900px;
    margin-bottom: 25px;
}
.hyped-solar-section .hero-subheadline {
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 500;
    color: #1a1a1a;
    margin-top: 20px;
    line-height: 1.5;
    max-width: 400px;
    opacity: 0.85;
}
.hyped-solar-section .cards-wrapper {
    display: flex;
    gap: 20px;
    margin-top: 50px;
    padding-bottom: 40px;
    align-items: flex-end;
}
.hyped-solar-section .card {
    border-radius: 24px;
    overflow: hidden;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    flex-shrink: 0;
}
.hyped-solar-section .card:hover {
    transform: rotate(0deg) translateY(-10px) scale(1.02) !important;
    z-index: 10;
}
.hyped-solar-section .card-blue {
    width: 240px;
    height: 320px;
    background: linear-gradient(135deg, var(--primary-color), #f7b733);
    transform: rotate(-6deg);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 24px;
    position: relative;
    box-shadow: 0 20px 50px rgba(254, 135, 4, 0.2);
}
.hyped-solar-section .card-blue .card-number {
    font-size: 48px;
    font-weight: 900;
    font-family: var(--font-heading);
    color: #fff;
    letter-spacing: -2px;
}
.hyped-solar-section .card-blue .card-label {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    margin-top: auto;
}
.hyped-solar-section .card-blue::after {
    content: '';
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
}
.hyped-solar-section .card-image {
    width: 260px;
    height: 360px;
    background-size: cover;
    background-position: center;
    transform: rotate(-3deg);
    position: relative;
}
.hyped-solar-section .card-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.3) 0%, transparent 40%);
    border-radius: 24px;
}
.hyped-solar-section .card-green {
    width: 220px;
    height: 300px;
    background: linear-gradient(135deg, var(--secondary-color), #3e3b5e);
    transform: rotate(-2deg);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 24px;
    position: relative;
    box-shadow: 0 20px 50px rgba(35, 33, 53, 0.2);
}
.hyped-solar-section .card-green .card-number {
    font-size: 48px;
    font-weight: 900;
    font-family: var(--font-heading);
    color: #fff;
    letter-spacing: -2px;
}
.hyped-solar-section .card-green .card-label {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    margin-top: auto;
}
.hyped-solar-section .card-green::after {
    content: '';
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
}
.hyped-solar-section .card-image-2 {
    width: 280px;
    height: 340px;
    background-size: cover;
    background-position: center;
    transform: rotate(3deg);
    position: relative;
}
.hyped-solar-section .card-image-2 .card-overlay-text {
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
    z-index: 2;
}
.hyped-solar-section .card-image-2::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 50%);
    border-radius: 24px;
}
@media (max-width: 1024px) {
    .hyped-solar-section {
        padding: 60px 24px;
    }
    .hyped-solar-section .card-blue { width: 200px; height: 270px; }
    .hyped-solar-section .card-image { width: 220px; height: 310px; }
    .hyped-solar-section .card-green { width: 180px; height: 250px; }
    .hyped-solar-section .card-image-2 { width: 240px; height: 290px; }
}
@media (max-width: 768px) {
    .hyped-solar-section .hero-headline { letter-spacing: -1px; }
    .hyped-solar-section .cards-wrapper {
        gap: 12px;
        margin-top: 40px;
        overflow-x: auto;
        padding-bottom: 30px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .hyped-solar-section .cards-wrapper::-webkit-scrollbar { display: none; }
    .hyped-solar-section .card {
        scroll-snap-align: start;
        transform: rotate(0deg) !important;
    }
    .hyped-solar-section .card-blue { width: 200px; height: 260px; }
    .hyped-solar-section .card-image { width: 220px; height: 300px; }
    .hyped-solar-section .card-green { width: 180px; height: 240px; }
    .hyped-solar-section .card-image-2 { width: 240px; height: 280px; }
}
@keyframes hyped_fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.hyped-solar-section .hero-headline {
    animation: hyped_fadeInUp 0.8s ease forwards;
}
.hyped-solar-section .hero-subheadline {
    animation: hyped_fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}
.hyped-solar-section .card:nth-child(1) { animation: hyped_fadeInUp 0.6s ease 0.5s forwards; opacity: 0; }
.hyped-solar-section .card:nth-child(2) { animation: hyped_fadeInUp 0.6s ease 0.65s forwards; opacity: 0; }
.hyped-solar-section .card:nth-child(3) { animation: hyped_fadeInUp 0.6s ease 0.8s forwards; opacity: 0; }
.hyped-solar-section .card:nth-child(4) { animation: hyped_fadeInUp 0.6s ease 0.95s forwards; opacity: 0; }